home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Assassins - Ultimate CD Games Collection 4
/
Assassins 4 (1999)(Weird Science).iso
/
workbench_games2
/
miniarcanoid
/
miniarcanoid.install
< prev
next >
Wrap
Text File
|
1996-05-08
|
2KB
|
121 lines
; MiniArcanoid Installer script
(welcome)
(set destdir
(askdir
(prompt "Select where MiniArcanoid drawer should be created")
(help @askdir-help)
(default @default-dest)
)
)
(set @default-dest (tackon destdir "MiniArcanoid"))
(if (NOT (exists @default-dest))
(makedir @default-dest (infos))
)
(copyfiles
(source "MiniArcanoid")
(dest @default-dest)
(help @copyfiles-help)
(infos)
)
(copyfiles
(source "MiniArcanoid.info")
(dest @default-dest)
(help @copyfiles-help)
(infos)
)
(set opts
(askoptions
(prompt "Please confirm if you'd like to install these")
(help @askoptions-help)
(choices "Documentation" "Sound samples" "Installer script")
(default 3)
)
)
(if (IN opts 0)
((copyfiles
(prompt "Copying documentation")
(source "MiniArcanoid.guide")
(dest @default-dest)
(help @copyfiles-help)
(infos)
)
(copyfiles
(prompt "Copying documentation")
(source "MiniArcanoid.guide.info")
(dest @default-dest)
(help @copyfiles-help)
(infos)
))
)
(if (IN opts 1)
((copyfiles
(prompt "Copying samples")
(source "applause.snd")
(dest @default-dest)
(help @copyfiles-help)
(infos)
)
(copyfiles
(prompt "Copying samples")
(source "brick.snd")
(dest @default-dest)
(help @copyfiles-help)
(infos)
)
(copyfiles
(prompt "Copying samples")
(source "hardbrick.snd")
(dest @default-dest)
(help @copyfiles-help)
(infos)
)
(copyfiles
(prompt "Copying samples")
(source "letter.snd")
(dest @default-dest)
(help @copyfiles-help)
(infos)
)
(copyfiles
(prompt "Copying samples")
(source "lost.snd")
(dest @default-dest)
(help @copyfiles-help)
(infos)
)
(copyfiles
(prompt "Copying samples")
(source "stick.snd")
(dest @default-dest)
(help @copyfiles-help)
(infos)
))
)
(if (IN opts 2)
((copyfiles
(prompt "Copying installer script")
(source "MiniArcanoid.install")
(dest @default-dest)
(help @copyfiles-help)
(infos)
)
(copyfiles
(prompt "Copying installer script")
(source "MiniArcanoid.install.info")
(dest @default-dest)
(help @copyfiles-help)
(infos)
))
)
(exit)